home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ansi / hercules.zip / HERCMAKE.LCM < prev    next >
Text File  |  1986-09-05  |  768b  |  34 lines

  1. #
  2. # Makefile for HERCBIOS.COM
  3. #       (designed for Larry Campbell's version of MAKE)
  4. #
  5.  
  6. hercbios.com : hercbios.obj gchar.obj graph.obj
  7.     link hercbios gchar graph,,/MAP;
  8.     exe2bin  hercbios.exe  hercbios.com
  9.     del hercbios.exe
  10.  
  11. hercbios.obj : hercbios.asm hercbios.h
  12.         masm hercbios,,;
  13.  
  14. gchar.obj : gchar.asm hercbios.h
  15.         masm gchar,,;
  16.  
  17. graph.obj : graph.asm hercbios.h
  18.         masm graph,,;
  19.  
  20.  
  21. #
  22. # Makes for the demo & test program, using Lattice
  23. #       (Note: you may have to change the drive and path specs)
  24. #
  25.  
  26. testpix.exe : testpix.obj hercpixl.obj
  27.     link g:\lc\s\c testpix hercpixl,testpix,testpix/m,g:\lc\s\lc
  28.  
  29. testpix.obj : testpix.c
  30.     lc -ms -n -ig:\lc\ testpix
  31.  
  32. hercpixl.obj : hercpixl.c
  33.     lc -ms -n -ig:\lc\ hercpixl
  34.